home *** CD-ROM | disk | FTP | other *** search
- ;
- ; StartSMTPd
- ;
- ; Copyright 1993 - 1994 by Michael B. Smith.
- ; All Rights Reserved.
- ;
- ; Example script to start the STMPd Daemon.
- ;
- ; SMTPMailDir points to where MailBoxes/Folders are located. It may be
- ; shared with UUCP MailBoxes and Folders (they are the same format).
- ;
- ; SMTPSpoolDir is the directory where SMTP spool files are to be located.
- ; If SMTPpost cannot locate a destination host, it places the articles
- ; in this directory, and retries sending the messages on a regular basis.
- ; It *may not* be shared with UUSpool. The batch files are a different
- ; format.
- ;
- ; SMTPSmarterHost is the SMTP host where mail is sent if the destination
- ; host is not reachable. It is presumed to be an Internet host which
- ; has better routing information than do we.
- ;
- ; SMTPRMail is the program used to deliver mail destined for the local
- ; host.
- ;
- ; SMTPRoute defines the mechanisms used to find a hostname, and how to
- ; deliver it.
- ;
- SetEnv SMTPMailDir INet:Mail/
- SetEnv SMTPSpoolDir INet:MailSpool/
- SetEnv SMTPSmarterHost dummy
- SetEnv SMTPRMail SMTPpost -r
- SetEnv SMTPRoute mx,smarterhost,smtp,uucp
- run <>nil: SMTPd
-